home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 October / enter-2005-10.iso / files / jedit42install.exe / {app} / jedit.jar / bsh / commands / setClassPath.bsh < prev    next >
Encoding:
Text File  |  2003-12-27  |  321 b   |  15 lines

  1. /**
  2.     Change the classpath to the specified array of directories and/or archives.
  3.     <p>
  4.     See "Class Path Management" for details.
  5.  
  6.     @method void setClassPath( URL [] )
  7. */
  8.  
  9. bsh.help.setClassPath= "usage: setClassPath( URL [] )";
  10.  
  11. void setClassPath( urls ) {
  12.     this.caller.namespace.getClassManager().setClassPath( urls );
  13. }
  14.  
  15.